home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 376-400 / 399 / cclib / include / stdarg.h < prev    next >
C/C++ Source or Header  |  1995-03-14  |  243b  |  12 lines

  1. #ifndef STDARGS_H
  2. #define STDARGS_H 1
  3.  
  4. typedef unsigned char *va_list;
  5.  
  6. #define va_start(ap, lastarg) ((ap) = (va_list)(&lastarg + 1))
  7. #define va_arg(ap, type) ((ap) += sizeof(type), ((type *)(ap))[-1])
  8. #define va_end(ap) ((ap) = 0L)
  9.  
  10. #endif
  11.  
  12.